* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5ecec 0%, #fdfafa 100%);
    min-height: 100vh;
    padding: 40px 20px;
    overflow-x: hidden;
}

#menu__toggle {
    opacity: 0;
    position: absolute;
    z-index: -1;
}

.menu__btn {
    display: flex;
    align-items: center;
    position: fixed;
    top: 20px;
    left: 20px;
    width: 26px;
    height: 26px;
    background-color: rgba(245, 245, 220, 0.9);
    border-radius: 5px;
    z-index: 1000;
    cursor: pointer;
    padding: 5px;
}

.menu__btn>span,
.menu__btn>span::before,
.menu__btn>span::after {
    display: block;
    position: absolute;
    width: 16px;
    height: 2px;
    background-color: #333;
    transition: 0.3s;
}

.menu__btn>span::before {
    content: '';
    top: -6px;
}

.menu__btn>span::after {
    content: '';
    top: 6px;
}

.menu__box {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100%;
    margin: 0;
    padding: 80px 20px 20px;
    list-style: none;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.2);
    transition: left 0.3s ease;
    z-index: 999;
}

.menu__item {
    display: block;
    padding: 15px 20px;
    color: #333;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s;
}

.menu__item:hover {
    background-color: #f5f5f5;
    color: #d32f2f;
}

#menu__toggle:checked~.menu__btn>span {
    transform: rotate(45deg);
}

#menu__toggle:checked~.menu__btn>span::before {
    top: 0;
    transform: rotate(0deg);
}

#menu__toggle:checked~.menu__btn>span::after {
    top: 0;
    transform: rotate(90deg);
}

#menu__toggle:checked~.menu__box {
    left: 0;
}

header {
    width: 105%;
    min-height: 150px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
    top: -40px;
    right: 20px;
}

#logo {
    max-width: 200px;
    height: auto;
}

.d7 {
    margin: 0 20px;
}

.d7 form {
    display: flex;
    position: relative;
    width: 100%;
    margin-right: 30px;
}

.d7 input {
    width: 300px;
    height: 42px;
    padding-left: 15px;
    padding-right: 100px;
    border-radius: 42px;
    border: 2px solid #000000;
    background: #F9F0DA;
    font-size: 16px;
    transition: all 0.3s ease;
}

.d7 input:focus {
    width: 320px;
    outline: none;
    border-color: #d32f2f;
    box-shadow: 0 0 5px rgba(211, 47, 47, 0.3);
}

.d7 button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 32px;
    border: none;
    background: #d32f2f;
    color: white;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.d7 button:hover {
    background: #b71c1c;
}

.connection {
    text-align: center;
    font-size: 14px;
}

#number {
    color: #d32f2f;
    font-size: 13px;
    font-weight: bold;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.left-section {
    padding-right: 40px;
}

.left-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c2c2c;
    line-height: 1.2;
    margin-bottom: 30px;
}

.left-section p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.cta-button {
    background: linear-gradient(135deg, #3a7934 0%, #daf65c 100%);
    color: white;
    border: 0;
    padding: 16px 32px;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);

}

.right-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    background: white;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-card h3 {
    color: #2c2c2c;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .left-section {
        padding-right: 0;
        text-align: center;
    }

    .left-section h1 {
        font-size: 2.5rem;
    }

    .feature-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .left-section h1 {
        font-size: 2rem;
    }

    .feature-card {
        padding: 20px;
    }
}